From: Richard M. Stallman Date: Wed, 26 May 1993 17:50:23 +0000 (+0000) Subject: (Fcurrent_input_mode): Fix the call to Flist. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95944 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=bf673a7a1392388daed1b02810c985a6db1c2eba;p=emacs.git (Fcurrent_input_mode): Fix the call to Flist. --- diff --git a/src/keyboard.c b/src/keyboard.c index 8b307c7fa6d..fc7d5f4d8cf 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -4631,7 +4631,7 @@ The elements of this list correspond to the arguments of\n\ val[2] = meta_key == 2 ? make_number (0) : meta_key == 1 ? Qt : Qnil; XFASTINT (val[3]) = quit_char; - return Flist (val, sizeof (val) / sizeof (val[0])); + return Flist (sizeof (val) / sizeof (val[0]), val); }